home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal / ORBit2.m4 < prev    next >
M4 Source File  |  2006-04-25  |  9KB  |  203 lines

  1. dnl AM_PATH_ORBIT2([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
  2. dnl Test for ORBit2, and define ORBIT_CFLAGS and ORBIT_LIBS
  3. dnl
  4. AC_DEFUN([AM_PATH_ORBIT2],
  5. [dnl 
  6. dnl Get the cflags and libraries from the orbit2-config script
  7. dnl
  8. AC_ARG_WITH(orbit-prefix,[  --with-orbit-prefix=PFX   Prefix where ORBIT is installed (optional)],
  9.             orbit_config_prefix="$withval", orbit_config_prefix="")
  10. AC_ARG_WITH(orbit-exec-prefix,[  --with-orbit-exec-prefix=PFX Exec prefix where ORBIT is installed (optional)],
  11.             orbit_config_exec_prefix="$withval", orbit_config_exec_prefix="")
  12. AC_ARG_ENABLE(orbittest, [  --disable-orbittest       Do not try to compile and run a test ORBIT program],
  13.             , enable_orbittest=yes)
  14.  
  15.   for module in . $4
  16.   do
  17.       case "$module" in
  18.          server) 
  19.              orbit_config_args="$orbit_config_args server"
  20.      ;;
  21.          client) 
  22.              orbit_config_args="$orbit_config_args client"
  23.          ;;
  24.       esac
  25.   done
  26.   if test x$orbit_config_args = x ; then
  27.     orbit_config_args=server
  28.   fi
  29.  
  30.   if test x$orbit_config_exec_prefix != x ; then
  31.      orbit_config_args="$orbit_config_args --exec-prefix=$orbit_config_exec_prefix"
  32.      if test x${ORBIT_CONFIG+set} != xset ; then
  33.         ORBIT_CONFIG=$orbit_config_exec_prefix/bin/orbit2-config
  34.      fi
  35.   fi
  36.   if test x$orbit_config_prefix != x ; then
  37.      orbit_config_args="$orbit_config_args --prefix=$orbit_config_prefix"
  38.      if test x${ORBIT_CONFIG+set} != xset ; then
  39.         ORBIT_CONFIG=$orbit_config_prefix/bin/orbit2-config
  40.      fi
  41.   fi
  42.  
  43.   AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  44.   AC_PATH_PROG(ORBIT_CONFIG, orbit2-config, no)
  45.   min_orbit_version=ifelse([$1], , 2.3.0, $1)
  46.   AC_MSG_CHECKING(for ORBit - version >= $min_orbit_version)
  47.   no_orbit=""
  48.   if test "$ORBIT_CONFIG" = "no" ; then
  49.     no_orbit=yes
  50.   else
  51.     ORBIT_CFLAGS=`$ORBIT_CONFIG $orbit_config_args --cflags`
  52.     ORBIT_LIBS=`$ORBIT_CONFIG $orbit_config_args --libs`
  53.     ORBIT_VERSION=`$PKG_CONFIG --modversion ORBit-2.0`
  54.     orbit_config_major_version=`echo $ORBIT_VERSION | \
  55.        sed -e 's,[[^0-9.]],,g' -e 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
  56.     orbit_config_minor_version=`echo $ORBIT_VERSION | \
  57.        sed -e 's,[[^0-9.]],,g' -e 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
  58.     orbit_config_micro_version=`echo $ORBIT_VERSION | \
  59.        sed -e 's,[[^0-9.]],,g' -e 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
  60.     if test "x$enable_orbittest" = "xyes" ; then
  61.       ac_save_CFLAGS="$CFLAGS"
  62.       ac_save_LIBS="$LIBS"
  63.       CFLAGS="$CFLAGS $ORBIT_CFLAGS"
  64.       LIBS="$ORBIT_LIBS $LIBS"
  65. dnl
  66. dnl Now check if the installed ORBIT is sufficiently new. (Also sanity
  67. dnl checks the results of orbit2-config to some extent
  68. dnl
  69.       rm -f conf.orbittest
  70.       AC_TRY_RUN([
  71. #include <orbit/orbit.h>
  72. #include <stdio.h>
  73. #include <stdlib.h>
  74.  
  75. int 
  76. main ()
  77. {
  78.   int major, minor, micro;
  79.   char *tmp_version;
  80.  
  81.   system ("touch conf.orbittest");
  82.  
  83.   /* HP/UX 9 (%@#!) writes to sscanf strings */
  84.   tmp_version = g_strdup("$min_orbit_version");
  85.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) {
  86.      printf("%s, bad version string\n", "$min_orbit_version");
  87.      exit(1);
  88.    }
  89.  
  90.   if ((orbit_major_version != $orbit_config_major_version) ||
  91.       (orbit_minor_version != $orbit_config_minor_version) ||
  92.       (orbit_micro_version != $orbit_config_micro_version))
  93.     {
  94.       printf("\n*** 'pkg-config --version ORBit-2.0' returned %d.%d.%d, but ORBit (%d.%d.%d)\n", 
  95.              $orbit_config_major_version, $orbit_config_minor_version, $orbit_config_micro_version,
  96.              orbit_major_version, orbit_minor_version, orbit_micro_version);
  97.       printf ("*** was found! If orbit2-config was correct, then it is best\n");
  98.       printf ("*** to remove the old version of ORBit. You may also be able to fix the error\n");
  99.       printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
  100.       printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
  101.       printf("*** required on your system.\n");
  102.       printf("*** If orbit2-config was wrong, set the environment variable ORBIT_CONFIG\n");
  103.       printf("*** to point to the correct copy of orbit2-config, and remove the file config.cache\n");
  104.       printf("*** before re-running configure\n");
  105.     } 
  106. #if defined (ORBIT_MAJOR_VERSION) && defined (ORBIT_MINOR_VERSION) && defined (ORBIT_MICRO_VERSION)
  107.   else if ((orbit_major_version != ORBIT_MAJOR_VERSION) ||
  108.        (orbit_minor_version != ORBIT_MINOR_VERSION) ||
  109.            (orbit_micro_version != ORBIT_MICRO_VERSION))
  110.     {
  111.       printf("*** ORBit header files (version %d.%d.%d) do not match\n",
  112.          ORBIT_MAJOR_VERSION, ORBIT_MINOR_VERSION, ORBIT_MICRO_VERSION);
  113.       printf("*** library (version %d.%d.%d)\n",
  114.          orbit_major_version, orbit_minor_version, orbit_micro_version);
  115.     }
  116. #endif /* defined (ORBIT_MAJOR_VERSION) ... */
  117.   else
  118.     {
  119.       if ((orbit_major_version > major) ||
  120.         ((orbit_major_version == major) && (orbit_minor_version > minor)) ||
  121.         ((orbit_major_version == major) && (orbit_minor_version == minor) && (orbit_micro_version >= micro)))
  122.       {
  123.         return 0;
  124.        }
  125.      else
  126.       {
  127.         printf("\n*** An old version of ORBit (%d.%d.%d) was found.\n",
  128.                orbit_major_version, orbit_minor_version, orbit_micro_version);
  129.         printf("*** You need a version of ORBit newer than %d.%d.%d. The latest version of\n",
  130.            major, minor, micro);
  131.         printf("*** ORBit is always available from ftp://ftp.orbit.org.\n");
  132.         printf("***\n");
  133.         printf("*** If you have already installed a sufficiently new version, this error\n");
  134.         printf("*** probably means that the wrong copy of the orbit2-config shell script is\n");
  135.         printf("*** being found. The easiest way to fix this is to remove the old version\n");
  136.         printf("*** of ORBit, but you can also set the ORBIT_CONFIG environment to point to the\n");
  137.         printf("*** correct copy of orbit2-config. (In this case, you will have to\n");
  138.         printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
  139.         printf("*** so that the correct libraries are found at run-time))\n");
  140.       }
  141.     }
  142.   return 1;
  143. }
  144. ],, no_orbit=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  145.        CFLAGS="$ac_save_CFLAGS"
  146.        LIBS="$ac_save_LIBS"
  147.      fi
  148.   fi
  149.   if test "x$no_orbit" = x ; then
  150.      AC_MSG_RESULT(yes)
  151.      ifelse([$2], , :, [$2])     
  152.   else
  153.      AC_MSG_RESULT(no)
  154.      if test "$ORBIT_CONFIG" = "no" ; then
  155.        echo "*** The orbit2-config script installed by ORBIT could not be found"
  156.        echo "*** If ORBit was installed in PREFIX, make sure PREFIX/bin is in"
  157.        echo "*** your path, or set the ORBIT_CONFIG environment variable to the"
  158.        echo "*** full path to orbit2-config."
  159.      else
  160.        if test -f conf.orbittest ; then
  161.         :
  162.        else
  163.           echo "*** Could not run ORBIT test program, checking why..."
  164.           CFLAGS="$CFLAGS $ORBIT_CFLAGS"
  165.           LIBS="$LIBS $ORBIT_LIBS"
  166.           AC_TRY_LINK([
  167. #include <orbit/orbit.h>
  168. #include <stdio.h>
  169. ],      [ return ((orbit_major_version) || (orbit_minor_version) || (orbit_micro_version)); ],
  170.         [ echo "*** The test program compiled, but did not run. This usually means"
  171.           echo "*** that the run-time linker is not finding ORBit or finding the wrong"
  172.           echo "*** version of ORBit. If it is not finding ORBit, you'll need to set your"
  173.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  174.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  175.           echo "*** is required on your system"
  176.       echo "***"
  177.           echo "*** If you have an old version installed, it is best to remove it, although"
  178.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
  179.           echo "***"
  180.           echo "*** If you have a RedHat 5.0 system, you should remove the ORBit package that"
  181.           echo "*** came with the system with the command"
  182.           echo "***"
  183.           echo "***    rpm --erase --nodeps orbit orbit-devel" ],
  184.         [ echo "*** The test program failed to compile or link. See the file config.log for the"
  185.           echo "*** exact error that occured. This usually means ORBIT was incorrectly installed"
  186.           echo "*** or that you have moved ORBit since it was installed. In the latter case, you"
  187.           echo "*** may want to edit the orbit2-config script: $ORBIT_CONFIG" ])
  188.           CFLAGS="$ac_save_CFLAGS"
  189.           LIBS="$ac_save_LIBS"
  190.        fi
  191.      fi
  192.      ORBIT_CFLAGS=""
  193.      ORBIT_LIBS=""
  194.      ifelse([$3], , :, [$3])
  195.   fi
  196.  
  197.   AC_PATH_PROG(ORBIT_IDL, orbit-idl-2, ifelse([$3], , :, [$3]))
  198.   AC_SUBST(ORBIT_CFLAGS)
  199.   AC_SUBST(ORBIT_LIBS)
  200.   AC_SUBST(ORBIT_IDL)
  201.   rm -f conf.orbittest
  202. ])
  203.